Search
Rect Constructor
See Also
 






Initializes a new instance of the Rect class.

Namespace: MindFusion.Drawing
File: Rect.js

 Syntax

JavaScript  Copy Code

function Rect (x, y, [width, [height]])

 Parameters

x

Type: Number | Point
Number | Point. The X-coordinate of the top left corner of the rectangle.

y

Type: Number | Size
Number | Size. The Y-coordinate of the top left corner of the rectangle.

width
Optional.

Type: Number
Number. The width of the rectangle.

height
Optional.

Type: Number
Number. The height of the rectangle.

 See Also